home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / PCSoftware / ColdFusion Studio 4.5.1 Trial / ColdFusionStudio_Eval.exe / data1.cab / Wizards / CFML / Verity_VSearchForm.wml < prev    next >
Encoding:
Text File  |  2000-04-03  |  1.2 KB  |  44 lines

  1. <!--- template settings --->
  2. <CFSET SearchDirectory = "$${WorkingDirectory}">
  3.  
  4. <HTML><HEAD>
  5.     <TITLE>$${ApplicationName} - Search Form</TITLE>
  6. </HEAD><BODY bgcolor="ffffff">
  7.  
  8. <FONT size="+1">$${ApplicationName}</FONT> <BR>
  9. <FONT size="+2"><B>Search Form</B></FONT>
  10.  
  11.  
  12. <!--- search form definition --->
  13. <FORM action="$${SafeApplicationName}_VSearchResult.cfm" method="post">
  14.     <INPUT type="hidden" name="StartRow" value="1">
  15.  
  16.     <TABLE>
  17.  
  18.         <TR>
  19.             <TD>Keywords:</TD>
  20.             <TD><INPUT type="text" name="Criteria" size="30"></TD>
  21.         </TR>
  22.  
  23.         <TR>
  24.             <TD>Max Rows:</TD>
  25.             <TD><SELECT name="MaxRows"> <OPTION> 10 <OPTION> 25 <OPTION> 100 </SELECT></TD>
  26.         </TR>
  27.  
  28.         <TR>
  29.             <TD colspan=2><INPUT type="submit" value="   Search   "></TD>
  30.         </TR>
  31.  
  32.     </TABLE>
  33.  
  34. </FORM>
  35.  
  36. <P>
  37. <I>
  38. Before you run the search for the first time, you have to index the working directory. Click on the link below and the
  39. directory will be indexed. Create a bookmark for this link and then delete the link from the template. Use the bookmark 
  40. in the future to refresh the Verity collection.</I><BR>
  41. [<A href="$${SafeApplicationName}_VPathIndexing.cfm?RequestTimeout=500">Index the '$${WorkingDirectory}' directory</A>]
  42.  
  43.  
  44. </BODY></HTML>